d4bedb75e9d9407ac7eb2d0add3fffa8824be0ee,Common/Frameworks/ERExtensions/Sources/er/extensions/ERXWOForm.java,ERXWOForm,appendAttributesToResponse,#WOResponse#WOContext#,54
Before Change
//FIXME: (ak) we assume that relative URL creation is on by default, so we may restore the wrong type
WOResponse newResponse = new WOResponse();
context._generateCompleteURLs();
super.appendAttributesToResponse(newResponse, context);
context._generateRelativeURLs();
String action = newResponse.contentString();
After Change
}
boolean secure = _secure != null && _secure.booleanValueInComponent(context.component());
Object fragmentIdentifier = (_fragmentIdentifier != null ? _fragmentIdentifier.valueInComponent(context.component()) : null);
if (secure || fragmentIdentifier != null) {
//FIXME: (ak) we assume that relative URL creation is on by default, so we may restore the wrong type
WOResponse newResponse = new WOResponse();
if(secure) {
context._generateCompleteURLs();
super.appendAttributesToResponse(newResponse, context);
context._generateRelativeURLs();
} else {
super.appendAttributesToResponse(newResponse, context);